JBoss Community Archive (Read Only)

Teiid 8.13

Setting up the build environment

For Eclipse users (without maven integration), create a java project and add dependencies to "teiid-common-core", "teiid-api" and JEE "connector-api" jars.

For maven users add the following as your dependencies:

    <dependencies>
        <dependency>
            <groupId>org.jboss.teiid</groupId>
            <artifactId>teiid-api</artifactId>
            <version>${teiid-version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.teiid</groupId>
            <artifactId>teiid-common-core</artifactId>
            <version>${teiid-version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.resource</groupId>
            <artifactId>connector-api</artifactId>
            <version>${version.connector.api}</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>        

Where the ${teiid-version} property should be set to the expected version, such as 8.13.0.Final. You can find Teiid artifacts in the JBoss maven repository . The ${version.connector.api} version last used was 1.5.

JBoss.org Content Archive (Read Only), exported from JBoss Community Documentation Editor at 2020-03-13 12:30:08 UTC, last content change 2013-12-19 14:16:04 UTC.